home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Informant Complete 1995 - 2000
/
Delphi Informant Complete 1995 to 2000.iso
/
Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar
/
1998
/
Feb
/
di9802kw
/
WebPics.dpr
< prev
next >
Wrap
Text File
|
1997-08-19
|
386b
|
23 lines
program WebPics;
{
Extract a picture from a database and display it on the web.
Written by Keith Wood, 12 Aug 1997.
}
{$APPTYPE CONSOLE}
uses
HTTPApp,
CGIApp2 in 'CGIApp2.pas',
WebPics1 in 'WebPics1.pas' {wmdWebPics: TWebModule};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TwmdWebPics, wmdWebPics);
Application.Run;
end.